

class Bit {

    int bit;

    void setBit(int bit) {
	this.bit = bit;
    }

    public static void main (String[] args) {
	Bit bit = new Bit();
	bit.setBit(4);
    }
}

